home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Control Panel Hide Net.xpl < prev    next >
Text File  |  2000-11-13  |  2KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Control Panel\Other Settings"
  5. "NAME"="Visible pages in "Network""
  6. "OSVERSION"="10101"
  7. "LANGUAGE"="VBScript"
  8. "VERSION"="1.06"
  9. "TEXT 1"="Show "File and Print Sharing" page in Network control"
  10. "TEXT 2"="Show "Identification" page in Network control"
  11. "TEXT 3"="Show "Network access control" page in Network control"
  12. "DESCRIPTION 1"="To show a page inside the "Network" control, activate it. To hide it, deactivate it."
  13. "DESCRIPTION 2"="Please note: These settings are for Windows 9x only."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to CptSiskoX for the settings!"
  19.  
  20.  
  21. 'All DWORD. 1 = don't show, anything else =show
  22. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Network\NoFileSharingControl" 
  23. sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Network\NoNetSetupIDPage"
  24. sV3="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Network\NoNetSetupSecurityPage"
  25.  
  26.  
  27. Sub Plugin_Initialize 
  28.     i=RegReadValue(sV1)
  29.     if i<>1 then SetUIElement 1,true
  30.  
  31.     i=RegReadValue(sV2)
  32.     if i<>1 then SetUIElement 2,true
  33.  
  34.     i=RegReadValue(sV3)
  35.     if i<>1 then SetUIElement 3,true
  36. End Sub
  37.  
  38. Sub Plugin_CheckData(ElementIndex)
  39. End Sub
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  Call WriteIt(1,sV1)
  43.  Call WriteIt(2,sV2)
  44.  Call WriteIt(3,sV3)
  45.  
  46.  Call IndicateSettingChange()
  47. End Sub
  48.  
  49. Sub WriteIt(ITM,VAL)
  50.  b=GetUIElement(ITM)
  51.  if b=false then
  52.     call RegWriteValue(VAL,1,2)
  53.  else
  54.     chk=RegReadValue(VAL)
  55.     if IsEmpty(chk)=false then
  56.        Call RegDeleteValue(VAL)
  57.     end if
  58.  end if
  59. end sub
  60.  
  61. Sub Plugin_Terminate 
  62. End Sub
  63.  
  64.  
  65.  
  66.